home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / mint / applic~1 / ss133st.zoo / ss_133 / README-ST < prev    next >
Encoding:
Text File  |  1994-05-15  |  951 b   |  32 lines

  1. -*-text-*-
  2.  
  3. Here is my port of ss 1.3.3 to the Atari st with MiNT. I have only
  4. included the binaries, my config.st file and the patches. To recompile
  5. it, extract the original distribution, extract the  ST-file in the
  6. parent directory, cd into ss_133 and start patch like patch <PATCHES-ST.
  7. After that you can compile ss with make.
  8.  
  9. The included binary is shareable.  It was compiled with -O2,
  10. -fomit-frame-pointer, -mpcrel and -mbaserel.  It is linked with the
  11. mntlib PL44, pml PL21 and the curses library PL16.  PL16 has an
  12. error in cr_put.c:
  13.  
  14. --- 1.1    1994/05/14 11:02:34
  15. +++ cr_put.c    1994/05/14 11:10:42
  16. @@ -363,7 +363,9 @@
  17.              else {
  18.                  i = curscr->_y[outline][outcol];
  19.                  if ((i&_STANDOUT) == (curscr->_flags&_STANDOUT))
  20. -                    _putchar(i, stdout);
  21. +                /* Error: i might be > 0x7f!    */
  22. +                /*    _putchar(i, stdout);    */
  23. +                    _putchar(i & 0x7f, stdout);
  24.                  else
  25.                      goto nondes;
  26.              }
  27.  
  28. Hope you like it
  29.  
  30. Jens Krinke (krinke@ips.cs.tu-bs.de)
  31.  
  32.